home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vcls
/
wordapi
/
wderror.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-04-08
|
3KB
|
43 lines
UNIT WdError;
INTERFACE
CONST
errCAPINoError = 0; { No error }
errCAPIBadCommandId = 5001; { Command Id is invalid }
errCAPIOddParamBlock = 5002; { parameter block has odd number of bytes }
errCAPICmdNotAvailable = 5003; { command is not available }
errCAPIBadArgCount = 5004; { too many or too few arguments }
errCAPIInternalError = 5005; { error in our own data or handling }
errCAPIByteCountMismatch = 5006; { pb doesn't have acceptable # of bytes }
errCAPINotFunction = 5007; { non function called as function }
errCAPIBadType = 5008; { parameter type passed or expected is wrong }
errCAPIStringTooLong = 5009; { string is longer than 255 characters }
errCAPINullReturnBuffer = 5010; { pointer for output is Nil }
errCAPICantLock = 5011; { can't lock global handle }
errCAPICantAllocate = 5012; { can't allocate global handle }
errCAPINoDialog = 5013; { commmand has no dialog }
errCAPIOutOfMemory = 5014; { CAPI is out of memory }
errCAPIFieldIdOutOfRange = 5015; { too many parameters passed to function }
errCAPIBadFieldId = 5016; { Field Id not in Dialog }
errCAPIBadHandle = 5017; { Handle has not been allocated }
errCAPIArrayExpected = 5018; { parameter takes an array only }
errCAPITooManyDimensions = 5019; { too many dimesions for array }
errCAPIExpectedNumericType = 5020; { parameter passed was not a short long or num }
errCAPIExpectedStringType = 5021; { parameter passed was not a string }
errCAPIParameterOutOfRange = 5022; { parameter value was out of acceptable range }
errCAPICantReturnString = 5023; { String Type requested for numeric only field }
errCAPICantReturnNumeric = 5024; { Numeric Type requested for string only field }
errCAPIReturnOverflow = 5025; { Buffer for return string is too small }
errCAPIArrayOverflow = 5026; { Array string buffer is too small }
errCAPIDlgCommandOverflow = 5027; { Dialog command string buffer too small }
errCAPIOverflowNotHandled = 5028; { BufferTooSmall bit set on input }
errCAPICantParse = 5029; { String Passed can't be parsed }
errCAPIBadMessage = 5030; { Bad pointer in message (CMI) }
errCAPICommandFailed = 5031; { CAPI command failed }
errCAPIBadDocRef = 5032; { Document Reference Number is Invalid }
errCAPIInsufficientStack = 5033; { Minimum Stack not available }
errCAPIUninitializedString = 5034; { 0 was passed as string pointer }
IMPLEMENTATION
END.